home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 010a / super25n.zip / PRINTERS.DOC < prev    next >
Text File  |  1993-01-05  |  2KB  |  44 lines

  1.  
  2.                     ┌───────────────────────────────┐
  3.                     │         SuperLib 2.50         │
  4.                     │    For Clipper S87 and 5.01   │
  5.                     │    -------------------------  │
  6.                     │       copyright 1990          │
  7.                     │      Garry A Prefontaine      │
  8.                     └───────────────────────────────┘
  9.  
  10.  
  11.                              Printer Issues
  12.                              --------------
  13.  
  14.    This is how printing is handled by the library functions. You need
  15.    not follow this method.
  16.  
  17.    INITSUP() creates a global variable called _SUPERPRN, which contains
  18.    the printer port as a string with the default as "LPT1"
  19.  
  20.    INITSUP() also creates _CHECKPRN and sets it to .t. (_CHECKPRN indicates
  21.    whether of not SuperLib should attempt a hardware printer check to
  22.    determine printer readiness.)
  23.  
  24.    To change the default printer port, after calling INITSUP(), set _SUPERPRN
  25.    to the appropriate port.
  26.  
  27.    Valid values are "LPT1", "LPT2", "LPT3", "COM1","COM2".
  28.  
  29.    At print time, LPT1-3 are checked for readiness via the P_READY() function.
  30.    COM ports are not checked for readiness. However, if _CHECKPRN has been set
  31.    to .f., no check for readiness is done. (do this on a network where the
  32.    printers are redirected)
  33.  
  34.    If the port is not ready, the user is given
  35.    the option to:              Try Again
  36.                                Ignore the Warning
  37.                                Select a Different Printer Port
  38.                                Abort the print request
  39.  
  40.    If Abort is selected, P_READY() returns false.
  41.  
  42.  
  43.  
  44.